home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 April / PCWorld_2008-04_cd.bin / v cisle / personasfirefox / personas-latest.xpi / components / xptgen < prev   
Text File  |  2007-12-11  |  566b  |  13 lines

  1. #!/bin/bash -x
  2.  
  3. if [[ ! -d $MOZBINPATH ]]; then
  4.     echo "MOZBINPATH environment variable must point to a directory containing xpidl, either in a Gecko SDK ($GECKOSDKDIR/bin/) or a Mozilla build obj tree ($MOZOBJDIR/dist/bin)"
  5.     exit 1
  6. fi
  7. if [[ ! -d $MOZIDLPATH ]]; then
  8.     echo "MOZIDLPATH environment variable must point to a directory containing core XPIDL files, either in a Gecko SDK ($GECKOSDKDIR/idl) or in a Mozilla source tree ($MOZSRCDIR/xpcom/base)"
  9.     exit 1
  10. fi
  11.  
  12. $MOZBINPATH/xpidl -m typelib -I $MOZIDLPATH -o nsIPersonaService nsIPersonaService.idl
  13.